home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0172.dms / q0172.adf / CheckPlus / CheckPlus.Doc < prev    next >
Text File  |  1992-03-25  |  664b  |  34 lines

  1.  
  2.                   CheckPlus v1.0
  3.                   --------------
  4.  
  5.               © 1992 by David Kinder
  6.               ----------------------
  7.  
  8. Use
  9. ---
  10.  
  11. CheckPlus is a small program that can be used in script files to tell
  12. whether the system is running KickStart 2.0 or not. If KickStart 2.0 is
  13. not found (i.e. an old A500) then CheckPlus sets the return value to WARN.
  14. If KickStart 2.0 is found (i.e. an A500+) then the return value is set to OK.
  15.  
  16. Example
  17. -------
  18.  
  19. The following script shows the use of CheckPlus:
  20.  
  21.     ; Example script
  22.  
  23.     CheckPlus
  24.  
  25.     if WARN
  26.     ; Run some KickStart 1.3 only programs here
  27.     Else
  28.     ; Run some KickStart 2.0 only prpgrams here
  29.     EndIf
  30.  
  31.     ; Run programs for both machines here
  32.  
  33.  
  34.